home *** CD-ROM | disk | FTP | other *** search
- stop();
- _parent._parent.enemy_array.push(this._name);
- onEnterFrame = function()
- {
- if(_parent._parent.pauses == false)
- {
- if(this._xscale == 100)
- {
- this._x -= 8;
- }
- else if(this._xscale == -100)
- {
- this._x += 8;
- }
- if(this.getBounds(_root).xMin > 600 or this.getBounds(_root).xMin < -100)
- {
- this.removeMovieClip();
- }
- }
- };
-